home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / openssl / opensslconf.h < prev    next >
C/C++ Source or Header  |  2006-04-25  |  5KB  |  184 lines

  1. /* opensslconf.h */
  2. /* WARNING: Generated automatically from opensslconf.h.in by Configure. */
  3.  
  4. /* OpenSSL was configured with the following options: */
  5. #ifndef OPENSSL_DOING_MAKEDEPEND
  6.  
  7. #ifndef OPENSSL_NO_KRB5
  8. # define OPENSSL_NO_KRB5
  9. #endif
  10.  
  11. #endif /* OPENSSL_DOING_MAKEDEPEND */
  12. #ifndef OPENSSL_THREADS
  13. # define OPENSSL_THREADS
  14. #endif
  15.  
  16. /* The OPENSSL_NO_* macros are also defined as NO_* if the application
  17.    asks for it.  This is a transient feature that is provided for those
  18.    who haven't had the time to do the appropriate changes in their
  19.    applications.  */
  20. #ifdef OPENSSL_ALGORITHM_DEFINES
  21. # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
  22. #  define NO_KRB5
  23. # endif
  24. #endif
  25.  
  26. /* crypto/opensslconf.h.in */
  27.  
  28. /* Generate 80386 code? */
  29. #undef I386_ONLY
  30.  
  31. #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
  32. #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
  33. #define OPENSSLDIR "/etc/ssl"
  34. #endif
  35. #endif
  36.  
  37. #undef OPENSSL_UNISTD
  38. #define OPENSSL_UNISTD <unistd.h>
  39.  
  40. #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
  41.  
  42. #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
  43. #define IDEA_INT unsigned int
  44. #endif
  45.  
  46. #if defined(HEADER_MD2_H) && !defined(MD2_INT)
  47. #define MD2_INT unsigned int
  48. #endif
  49.  
  50. #if defined(HEADER_RC2_H) && !defined(RC2_INT)
  51. /* I need to put in a mod for the alpha - eay */
  52. #define RC2_INT unsigned int
  53. #endif
  54.  
  55. #if defined(HEADER_RC4_H)
  56. #if !defined(RC4_INT)
  57. /* using int types make the structure larger but make the code faster
  58.  * on most boxes I have tested - up to %20 faster. */
  59. /*
  60.  * I don't know what does "most" mean, but declaring "int" is a must on:
  61.  * - Intel P6 because partial register stalls are very expensive;
  62.  * - elder Alpha because it lacks byte load/store instructions;
  63.  */
  64. #define RC4_INT unsigned int
  65. #endif
  66. #if !defined(RC4_CHUNK)
  67. /*
  68.  * This enables code handling data aligned at natural CPU word
  69.  * boundary. See crypto/rc4/rc4_enc.c for further details.
  70.  */
  71. #undef RC4_CHUNK
  72. #endif
  73. #endif
  74.  
  75. #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
  76. /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
  77.  * %20 speed up (longs are 8 bytes, int's are 4). */
  78. #ifndef DES_LONG
  79. #define DES_LONG unsigned long
  80. #endif
  81. #endif
  82.  
  83. #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
  84. #define CONFIG_HEADER_BN_H
  85. #define BN_LLONG
  86.  
  87. /* Should we define BN_DIV2W here? */
  88.  
  89. /* Only one for the following should be defined */
  90. /* The prime number generation stuff may not work when
  91.  * EIGHT_BIT but I don't care since I've only used this mode
  92.  * for debuging the bignum libraries */
  93. #undef SIXTY_FOUR_BIT_LONG
  94. #undef SIXTY_FOUR_BIT
  95. #define THIRTY_TWO_BIT
  96. #undef SIXTEEN_BIT
  97. #undef EIGHT_BIT
  98. #endif
  99.  
  100. #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
  101. #define CONFIG_HEADER_RC4_LOCL_H
  102. /* if this is defined data[i] is used instead of *data, this is a %20
  103.  * speedup on x86 */
  104. #define RC4_INDEX
  105. #endif
  106.  
  107. #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
  108. #define CONFIG_HEADER_BF_LOCL_H
  109. #undef BF_PTR
  110. #endif /* HEADER_BF_LOCL_H */
  111.  
  112. #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
  113. #define CONFIG_HEADER_DES_LOCL_H
  114. #ifndef DES_DEFAULT_OPTIONS
  115. /* the following is tweaked from a config script, that is why it is a
  116.  * protected undef/define */
  117. #ifndef DES_PTR
  118. #define DES_PTR
  119. #endif
  120.  
  121. /* This helps C compiler generate the correct code for multiple functional
  122.  * units.  It reduces register dependancies at the expense of 2 more
  123.  * registers */
  124. #ifndef DES_RISC1
  125. #define DES_RISC1
  126. #endif
  127.  
  128. #ifndef DES_RISC2
  129. #undef DES_RISC2
  130. #endif
  131.  
  132. #if defined(DES_RISC1) && defined(DES_RISC2)
  133. YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
  134. #endif
  135.  
  136. /* Unroll the inner loop, this sometimes helps, sometimes hinders.
  137.  * Very mucy CPU dependant */
  138. #ifndef DES_UNROLL
  139. #define DES_UNROLL
  140. #endif
  141.  
  142. /* These default values were supplied by
  143.  * Peter Gutman <pgut001@cs.auckland.ac.nz>
  144.  * They are only used if nothing else has been defined */
  145. #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
  146. /* Special defines which change the way the code is built depending on the
  147.    CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
  148.    even newer MIPS CPU's, but at the moment one size fits all for
  149.    optimization options.  Older Sparc's work better with only UNROLL, but
  150.    there's no way to tell at compile time what it is you're running on */
  151.  
  152. #if defined( sun )        /* Newer Sparc's */
  153. #  define DES_PTR
  154. #  define DES_RISC1
  155. #  define DES_UNROLL
  156. #elif defined( __ultrix )    /* Older MIPS */
  157. #  define DES_PTR
  158. #  define DES_RISC2
  159. #  define DES_UNROLL
  160. #elif defined( __osf1__ )    /* Alpha */
  161. #  define DES_PTR
  162. #  define DES_RISC2
  163. #elif defined ( _AIX )        /* RS6000 */
  164.   /* Unknown */
  165. #elif defined( __hpux )        /* HP-PA */
  166.   /* Unknown */
  167. #elif defined( __aux )        /* 68K */
  168.   /* Unknown */
  169. #elif defined( __dgux )        /* 88K (but P6 in latest boxes) */
  170. #  define DES_UNROLL
  171. #elif defined( __sgi )        /* Newer MIPS */
  172. #  define DES_PTR
  173. #  define DES_RISC2
  174. #  define DES_UNROLL
  175. #elif defined(i386) || defined(__i386__)    /* x86 boxes, should be gcc */
  176. #  define DES_PTR
  177. #  define DES_RISC1
  178. #  define DES_UNROLL
  179. #endif /* Systems-specific speed defines */
  180. #endif
  181.  
  182. #endif /* DES_DEFAULT_OPTIONS */
  183. #endif /* HEADER_DES_LOCL_H */
  184.